VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Processing.Analyzers Namespace / Analyzer<TTarget,TValue> Class / TryAnalyze(TTarget,TValue) Method
Syntax Requirements SeeAlso
In This Topic
    TryAnalyze(TTarget,TValue) Method (Analyzer<TTarget,TValue>)
    In This Topic
    Analyzes the specified target.
    Syntax
    'Declaration
    
    Public Function TryAnalyze( _
    ByVal target
    The target to analyze.
    As TTarget, _
    ByRef value
    The value.
    As TValue _
    ) As Boolean
    public bool TryAnalyze(
    TTarget target,
    out TValue value
    )
    public: bool TryAnalyze(
    TTarget* target,
    [PARAMFLAG::Out] TValue* value
    )
    public:
    bool TryAnalyze(
    TTarget^ target,
    [Out] TValue^ value
    )

    Parameters

    target
    The target to analyze.
    value
    The value.

    Return Value

    True if value is analyzed successfully; otherwise, false.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also